*{
  margin: 0;
    padding: 0;
    box-sizing: border-box;

}
 body{

 margin: 0;
  padding: 0;
  background-color: rgb(5, 1, 43); 
  min-height: 100vh;
     display: flex;
  justify-content: center; 
   
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
  background-image: 
    radial-gradient(at 0% 0%, rgba(81, 45, 168, 0.2) 0px, transparent 50%), 
    radial-gradient(at 100% 100%, rgba(0, 212, 255, 0.15) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(5, 1, 43, 1) 0px, transparent 100%);

  
  will-change: transform;
  transform: translateZ(0); 
  backface-visibility: hidden;
  
  pointer-events: none; 
}
.texto{
  
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
     width: 50%;
    margin: auto;   
    padding: 15px;
     align-content: center;
    text-align: justify;
     background: rgba(4, 157, 184, 0.37); 
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(35, 5, 209, 0.3);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  border-radius: 15px;
  padding: 20px;
} 
.texto h1{
    font-size: 36px;
    margin-bottom: 20px;
     color: aqua;
      font-family: 'Times New Roman', Times, serif ;    
} 
.texto p{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
     color: white;
      font-family: 'Times New Roman', Times, serif ;    
} 
.butonesatras{
  width: 100%;
  padding-top: 20px;
  padding-left: 10px;
 
   
}
.butonesatras a{
  text-decoration: none;
  color: white;
  padding-top: 15px;
   border-radius: 15px;
  background-color: #355891;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
} 
.butonesatras a:hover{
  background-color: #5f82a9;
}
.butonesatras a button{
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

@media screen  and (max-width: 768px) {
  .texto {
    width: 90%;
    padding: 10px;
  }
  
  .texto h1 {
    font-size: 28px;
  }
  
  .texto p {
    font-size: 16px;
  } 
    
}